home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 04-01.BAS < prev    next >
BASIC Source File  |  1991-06-05  |  213b  |  18 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. Mode = FGgetmode
  6. FGsetmode 3
  7.  
  8. MaxCol = FGgetmaxx
  9. MaxRow = FGgetmaxy
  10.  
  11. FGsetmode Mode
  12. FGreset
  13.  
  14. PRINT "Last col = "; MaxCol
  15. PRINT "Last row = "; MaxRow
  16.  
  17. END
  18.